Package edu.uky.ai.csp
Class Problems
java.lang.Object
edu.uky.ai.csp.Problems
public class Problems
extends java.lang.Object
A set of example constraint satisfaction problems to solve.
- Author:
- Stephen G. Ware
-
Field Summary
Fields Modifier and Type Field Description static MapColoringAUSTRALIA_MAP_COLORINGA map of the regions of Australiastatic SudokuEASY_SUDOKUA Sudoku puzzle which can be solved by constraint propagation alonestatic SudokuHARD_SUDOKUA Sudoku in which no values can be discovered by constraint propagation (called "the hardest Sudoku puzzle in the world" by some)static SudokuMEDIUM_SUDOKUA Sudoku in which some but not all values can be discovered by constraint propagationstatic MapColoringUSA_MAP_COLORINGA map of the states in the USA (including DC) -
Constructor Summary
Constructors Constructor Description Problems() -
Method Summary
-
Field Details
-
EASY_SUDOKU
A Sudoku puzzle which can be solved by constraint propagation alone -
MEDIUM_SUDOKU
A Sudoku in which some but not all values can be discovered by constraint propagation -
HARD_SUDOKU
A Sudoku in which no values can be discovered by constraint propagation (called "the hardest Sudoku puzzle in the world" by some) -
AUSTRALIA_MAP_COLORING
A map of the regions of Australia -
USA_MAP_COLORING
A map of the states in the USA (including DC)
-
-
Constructor Details
-
Problems
public Problems()
-